Cleanup old java_library2 buck targets. We used to have //gerrit-gwtui-common:client-lib2 and //gerrit-plugin-gwtui:gwtui-api-lib2 as java_library2 targets, and //gerrit-gwtui-common:client-lib & //gerrit-plugin-gwtui:gwtui-api-lib as java_library targets. Now they are all java_library targets, I don't think the *2 targets are still needed any more. Change-Id: I27c8347c415bb918827ca75c53736cf5622954be 
diff --git a/gerrit-plugin-gwtui/BUCK b/gerrit-plugin-gwtui/BUCK index 132ade5..ec5903a 100644 --- a/gerrit-plugin-gwtui/BUCK +++ b/gerrit-plugin-gwtui/BUCK 
@@ -16,15 +16,9 @@    java_library(  name = 'gwtui-api-lib', - exported_deps = [':gwtui-api-lib2'], - visibility = ['PUBLIC'], -) - -java_library( - name = 'gwtui-api-lib2',  srcs = SRCS,  resources = glob(['src/main/**/*']), - exported_deps = ['//gerrit-gwtui-common:client-lib2'], + exported_deps = ['//gerrit-gwtui-common:client-lib'],  provided_deps = DEPS + ['//lib/gwt:dev'],  visibility = ['PUBLIC'],  ) @@ -62,7 +56,7 @@  '//lib:gwtjsonrpc',  '//lib:gwtorm_client',  '//lib/gwt:dev__jar', - '//gerrit-gwtui-common:client-lib2', + '//gerrit-gwtui-common:client-lib',  '//gerrit-common:client',  '//gerrit-reviewdb:client',  ],